home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / hypercrd / hc2_x / tcprogud.sit / TC Prog Guide / card_43142.txt < prev    next >
Text File  |  1991-02-27  |  509b  |  20 lines

  1. -- card: 43142 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 4755
  5. -- name: 
  6.  
  7.  
  8. -- part contents for background part 4
  9. ----- text -----
  10.     Person   *person;      /* pointer to direct object */
  11.     person = malloc(sizeof(Person));    /* dynamic memory allocation - 'direct' objects */
  12.     blessD(person,Person);     /* declare class of person */
  13.                .
  14.                .
  15.     free(person);      /* deallocate person */
  16.  
  17.  
  18. -- part contents for background part 7
  19. ----- text -----
  20. 129